home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 3_14.lha / 3_14 / 3_14b.c < prev    next >
C/C++ Source or Header  |  1993-08-08  |  374b  |  22 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. ypedef double (*d_f_va)(double[]);
  6. onst maxargs = 9;
  7. onst variable = -1;
  8. onst interp_func = -2;
  9.  
  10. truct name
  11.  
  12.    char *string;
  13.    name *next;
  14.    int nargs;
  15.    union
  16.        {
  17. double value;
  18.        d_f_va funcptr;
  19. char *funcdefn;
  20. };
  21. ;
  22.